type testing.chattyPrinter

7 uses

	testing (current package)
		testing.go#L566: type chattyPrinter struct {
		testing.go#L573: func newChattyPrinter(w io.Writer) *chattyPrinter {
		testing.go#L574: 	return &chattyPrinter{w: w, json: chatty.json}
		testing.go#L581: func (p *chattyPrinter) prefix() string {
		testing.go#L591: func (p *chattyPrinter) Updatef(testName, format string, args ...any) {
		testing.go#L605: func (p *chattyPrinter) Printf(testName, format string, args ...any) {
		testing.go#L641: 	chatty         *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.